home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / graphics.17 / graphics / graphics-0.17 / plot2fig / extern.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-11  |  1.3 KB  |  31 lines

  1. /* plot, unix plot to graphics device translators.
  2.    Copyright (C) 1989 Free Software Foundation, Inc.
  3.  
  4.    plot is distributed in the hope that it will be useful, but WITHOUT
  5.    ANY WARRANTY.  No author or distributor accepts responsibility to
  6.    anyone for the consequences of using it or for whether it serves any
  7.    particular purpose or works at all, unless he says so in writing.
  8.    Refer to the GNU General Public License for full details.
  9.  
  10.    Everyone is granted permission to copy, modify and redistribute
  11.    plot, but only under the conditions described in the GNU General
  12.    Public License.  A copy of this license is supposed to have been given
  13.    to you along with plot so you can know your rights and
  14.    responsibilities.  It should be in a file named COPYING.  Among other
  15.    things, the copyright notice and this notice must be preserved on all
  16.    copies.  */
  17.  
  18. /* this file contains all the exernal references between plot library
  19.    functions. The are not guaranteed to exist for a particular device
  20.    and thus are not made available to the user in general. */
  21.  
  22. extern int font_id;
  23. extern int line_style;
  24. extern int last_x, last_y;
  25. extern int PointsInLine;
  26. extern double dash_length;
  27. extern double text_rotation_angle;
  28.  
  29. extern double x_scale;      /* input to output scaleing for x */
  30. extern double y_scale;      /* input to output scaleing for y */
  31.